; ===================================
; Market Def NPC File : Lady Booster
; HiddenPlace
; -----------------------------------
; Name: Lady Booster
; Job: 
; Map No:
; Pos X
; Pos Y
; File name: *removed*
; Comment: 

;================================================= =
;

[@main]
#Say
Hello,so you have come to get a temporary boost of power i see. ?\
I Hope you have the correct items for your temporary boost as i,\
would hate to have to refuse you from this nice luxury...\ \
Choose your item you would like to make.\ \
<Mc Boost/@makemcboost>
<Dc boost/@makedcboost>
<Sc Boost/@makescboost>
<Acc Boost/@makeaccboost>\ \
<Ask/@ask> You wanna know more information about these boosters. ?\

[@ask]
Mc Booster - will give you a 30min boost of 10 MC.\
Dc Booster - Will give you a 30min boost of 10 DC.\
Sc booster - Will give you a 30min boost of 10 Sc.\
Acc Booster - Will give you a 30min Boost Of 6 Acc.\ \
<Previous screen/@main>

[@makemcboost]
You shall need the following items to make this item.\ \
ArmorBook(MC).\
SmallMcStone.\
String.\
<I have these items lets make my MCBooster/@mcboost>\
<I don't care, sorry/@exit>

[@mcboost]
#IF
checkitem ArmorBook(MC) 1
checkitem smallmcstone 1
checkitem string 1
#ACT
take ArmorBook(MC) 1
take smallmcstone 1
take string 1
INSTANTPOWERUP MC 10 3600
#SAY
I Hope you enjoy your MC Booster and dont forget,\
to come back there plenty more to give out.\ \
<Goodbye/@exit>

[@makeaccboost]
You shall need the following items to make this item.\ \
ArmorBook(ACC).\
SmallAccStone.\
String.\
<I have these items lets make my AccBooster/@accboost>\
<I don't care, sorry/@exit>

[@accboost]
#IF
checkitem ArmorBook(ACC) 1
checkitem smallaccstone 1
checkitem string 1
#ACT
take ArmorBook(ACC) 1
take smallaccstone 1
take string 1
INSTANTPOWERUP ACC 6 3600
#SAY
I Hope you enjoy your ACC Booster and dont forget,\
to come back there plenty more to give out.\ \
<Goodbye/@exit>

[@makescboost]
You shall need the following items to make this item.\ \
ArmorBook(SC).\
SmallScStone.\
String.\
<I have these items lets make my ScBooster/@scboost>\
<I don't care, sorry/@exit>

[@scboost]
#IF
checkitem ArmorBook(SC) 1
checkitem smallscstone 1
checkitem string 1
#ACT
take ArmorBook(SC) 1
take smallscstone 1
take string 1
INSTANTPOWERUP SC 10 3600
#SAY
I Hope you enjoy your SC Booster and dont forget,\
to come back there plenty more to give out.\ \
<Goodbye/@exit>

[@makedcboost]
You shall need the following items to make this item.\ \
ArmorBook(DC).\
SmallAccStone.\
String.\
<I have these items lets make my DcBooster/@dcboost>\
<I don't care, sorry/@exit>

[@dcboost]
#IF
checkitem ArmorBook(DC) 1
checkitem smalldcstone 1
checkitem string 1
#ACT
take ArmorBook(DC) 1
take smalldcstone 1
take string 1
INSTANTPOWERUP DC 10 3600
#SAY
I Hope you enjoy your DC Booster and dont forget,\
to come back there plenty more to give out.\ \
<Goodbye/@exit>